home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / Drivers / vc_2_2.lha / ParNet / Source / parnet_asm.h < prev    next >
Text File  |  1994-11-01  |  1KB  |  42 lines

  1. /*
  2. ** $Header: SRC:CVSROOT/Vector/ParNet/parnet_asm.h,v 1.1.1.1 1994/06/23 02:39:43 Barnard Exp $
  3. */
  4.  
  5. /*
  6. ** This code was originally written by Matthew Dillon and put into Public Domain
  7. **
  8. ** All changes concerning the adaption of Matt's original code to the
  9. ** Vector Connection I/O board are © 1991-1994 by Henning Schmiedehausen
  10. ** All rights for this changes are reserved. The original code is Public Domain
  11. **
  12. ** This code is distributed with the expressed written permission of Matthew
  13. ** Dillon (Thank you very much, Matt)
  14. **
  15. */
  16.  
  17. void __stdargs LockAddr(long *var);
  18.  
  19. void __stdargs UnlockAddr(long *var);
  20.  
  21. long __stdargs TryLockAddr(long *var);
  22.  
  23. void __stdargs SetUpPIO(void);
  24.  
  25. void __stdargs Time10000(void);
  26.  
  27. void __stdargs ParAddress(long address);
  28.  
  29. long __stdargs ParDataReady(void);
  30.  
  31. long __stdargs ParWrite(void * dstaddr, void * buf, long bytes);
  32.  
  33. long __stdargs ParWriteV(long addr, void *buf1, long lenbuf1, ... );
  34.  
  35. long __stdargs ParRead(void * buf, long bytes);
  36.  
  37. long __stdargs ParReadV(void * buf1, long lenbuf1, ... );
  38.  
  39. void __stdargs ClearPIOInt(void);
  40.  
  41. void __stdargs SetPIOInt(void);
  42.